type hash/adler32.digest
16 uses
hash/adler32 (current package)
adler32.go#L36: type digest uint32
adler32.go#L38: func (d *digest) Reset() { *d = 1 }
adler32.go#L46: d := new(digest)
adler32.go#L51: func (d *digest) Size() int { return Size }
adler32.go#L53: func (d *digest) BlockSize() int { return 4 }
adler32.go#L60: func (d *digest) AppendBinary(b []byte) ([]byte, error) {
adler32.go#L66: func (d *digest) MarshalBinary() ([]byte, error) {
adler32.go#L70: func (d *digest) UnmarshalBinary(b []byte) error {
adler32.go#L77: *d = digest(byteorder.BEUint32(b[len(magic):]))
adler32.go#L81: func (d *digest) Clone() (hash.Cloner, error) {
adler32.go#L87: func update(d digest, p []byte) digest {
adler32.go#L113: return digest(s2<<16 | s1)
adler32.go#L116: func (d *digest) Write(p []byte) (nn int, err error) {
adler32.go#L121: func (d *digest) Sum32() uint32 { return uint32(*d) }
adler32.go#L123: func (d *digest) Sum(in []byte) []byte {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |